body {
    font-family: 'Arial', sans-serif;
    background-color: #f2e9e4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

header, main, footer {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #d83367;
    font-size: 3rem;
}

p {
    font-size: 1.5rem;
}

a {
    color: #d83367;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}